{"version":3,"file":"static/chunks/pages/dl/[slug]-0f2217d200f49995.js","mappings":"sFACKA,OAAOC,SAAWD,OAAOC,UAAY,IAAIC,KAAK,CAC7C,aACA,WACE,OAAO,EAAQ,W,qICuBvB,UAVsB,Y,IAAGC,EAAI,EAAJA,KACjBC,GAAaC,EAAAA,EAAAA,GAAgBF,EAAKG,KAAKC,MAE7C,OACE,SAACC,EAAAA,EAAM,CAACC,YAAiB,OAAJN,QAAI,IAAJA,OAAAA,EAAAA,EAAMM,Y,UACzB,SAACL,EAAU,CAACM,WAAYC,EAAAA,S","sources":["webpack://_N_E/?7aaf","webpack://_N_E/./pages/dl/[slug].tsx"],"sourcesContent":["\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/dl/[slug]\",\n function () {\n return require(\"private-next-pages/dl/[slug].tsx\");\n }\n ]);\n if(module.hot) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/dl/[slug]\"])\n });\n }\n ","import { allDls } from '.contentlayer/generated'\nimport type { GetStaticProps } from 'next'\nimport Layout from './../../layouts/index'\nimport { useMDXComponent } from 'next-contentlayer/hooks'\nimport { MDXComponents } from 'components/mdx-components/mdx-components'\n\nexport const getStaticPaths = () => {\n const paths = allDls.map(post => `/${post._raw.flattenedPath}`)\n return { paths, fallback: false }\n}\n\nexport const getStaticProps: GetStaticProps = context => {\n const slug = context.params!.slug\n const post = allDls.find(post => post.url === `/dl/${slug}`)\n return { props: { post } }\n}\n\nconst SageMakerPost = ({ post }) => {\n const MDXContent = useMDXComponent(post.body.code)\n\n return (\n \n \n \n )\n}\n\nexport default SageMakerPost\n"],"names":["window","__NEXT_P","push","post","MDXContent","useMDXComponent","body","code","Layout","frontMatter","components","MDXComponents"],"sourceRoot":""}